home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue61 / Actions / TabActnsReg.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-05-26  |  215 b   |  18 lines

  1. unit TabActnsReg;
  2.  
  3. interface
  4.  
  5. procedure Register;
  6.  
  7. implementation
  8.  
  9. uses
  10.   ActnList, TabActns;
  11.  
  12. procedure Register;
  13. begin
  14.   RegisterActions('Tab', [TNextTabAction, TPriorTabAction], nil)
  15. end;
  16.  
  17. end.
  18.